-
Notifications
You must be signed in to change notification settings - Fork 39
feat: update recipe stylesheets handling #667
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
🦋 Changeset detectedLatest commit: cbb6d6d The changes in this PR will be included in the next version bump. This PR includes changesets to release 8 packages
Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
Walkthrough이번 변경에서는 각 CSS 레시피 모듈에 해당 CSS 파일을 직접 import하는 방식으로 스타일시트 의존성을 명시적으로 표현하도록 업데이트되었습니다. 이를 위해 여러 CSS 레시피 파일 상단에 CSS import 구문이 추가되었고, 기존에 사용되던 Rollup 플러그인( Changes
Sequence Diagram(s)sequenceDiagram
participant User
participant RecipeModule
participant CSSFile
User->>RecipeModule: import 레시피 JS 모듈
RecipeModule->>CSSFile: import './[recipe].css'
CSSFile-->>RecipeModule: 스타일 적용
RecipeModule-->>User: 스타일이 적용된 레시피 기능 제공
Poem
📜 Recent review detailsConfiguration used: CodeRabbit UI ⛔ Files ignored due to path filters (1)
📒 Files selected for processing (52)
💤 Files with no reviewable changes (7)
🧰 Additional context used🧬 Code Graph Analysis (1)ecosystem/qvism/core/src/js.ts (1)
⏰ Context from checks skipped due to timeout of 90000ms (3)
🔇 Additional comments (54)
✨ Finishing Touches
🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
- Added support for directly importing stylesheets in recipe definitions. - Updated `generateSlotRecipeJs` and `generateRecipeJs` functions to include an `importCss` option. - Removed the `@seed-design/qvism-rollup-plugin` dependency from multiple package configurations. - Cleaned up related files and added necessary imports for various recipe components.
232652f to
cbb6d6d
Compare
Deploying seed-design-v3 with
|
| Latest commit: |
cbb6d6d
|
| Status: | ✅ Deploy successful! |
| Preview URL: | https://5e821bcb.seed-design.pages.dev |
| Branch Preview URL: | https://recipe-css-import.seed-design.pages.dev |
Summary by CodeRabbit
New Features
Chores
Refactor